/* reach us section styling */

.reach-us {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.reach-us-top {
    background: url("../media/images/BGs/VideoToPhoto\ 638155885662393248_homePageAbout.webp") no-repeat center center/cover;
    width: 100%;
    height: 50dvh;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reach-us-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(69, 0, 153, 0.2);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.reach-us-top :nth-child(1) {
    z-index: 4;
    font-size: 3.981em;
    font-weight: 700;
    color: #f4eaff;
    text-shadow: 2px 2px 2px #440099;
    text-transform: uppercase;
}

.reach-us-top :nth-child(2) {
    z-index: 4;
    font-size: 1.6em;
    font-weight: 400;
    color: #fbfbfb;
    text-align: center;
}



/* The bento grid container */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.big-square {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.top-right1 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.top-right2 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.bottom-wide {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
}

.cntct-box {
    background-color: #450099;
    box-shadow: 2px 4px 6px rgba(69, 0, 153, 0.24);
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cntct-box::after {
    content: "";
    background-color: #fbfbfb;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    transition: all 0.3s ease-in-out;
}

.cntct-box:hover::after {
    scale: 2;
    pointer-events: none;
}

.cntct-box:hover .svg-cnct,
.cntct-box:hover .cnct-mail,
.cntct-box:hover .svg-address {
    position: relative;
    z-index: 6;
}

.cntct-box:hover .cntct-box-svgs h4 {
    color: #f4eaff;
    position: relative;
    z-index: 6;
}

.cntct-box:hover .contact-number,
.cntct-box:hover .mail-id,
.cntct-box:hover .address {
    position: relative;
    z-index: 6;
}

.cntct-box-svgs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: max-content;
}

.cntct-box svg {
    width: 50px;
    height: 50px;
    fill: #f4eaff;
    transition: all 0.3s ease-in-out;
}

.cntct-box-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.cntct-box-content .contact-link {
    display: block;
    color: #f4eaff;
    text-decoration: none;
    font-size: 1.4em;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
  }
  
  .contact-link:hover {
    transform: translateX(3px);
  }
  
  .contact-link:active {
    transform: translateX(1px);
  }
  
  .contact-link.whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .whatsapp-label {
    font-size: 1em;
    color: #fbfbfb;
    font-weight: 500;
  }

.cntct-box-svgs h4 {
    margin-bottom: 1rem;
    font-size: 1.6em;
    font-weight: 400;
    /* color: #440099; */
    color: #f4eaff;
    transition: all 0.3s ease-in-out;
}

.contact-number,
.mail-id,
.address {
    font-size: 1.6em;
    font-weight: 400;
    /* color: #440099; */
    color: #f4eaff;
    transition: all 0.3s ease-in-out;
}

.form-container {
    background: #f4eaff;
    padding: 30px;
    border-left: 5px solid #440099;
    /* clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%); */
}

.form-container .form .reach-us-form-heading {
    color: #440099;
    font-size: 2.765em;
    margin-bottom: 2rem;
    font-weight: 800;
}

.form-container .form .input {
    width: 100%;
    background-color: #f4eaff;
    color: #440099;
    font-weight: 400;
    border: 1px solid #440099;
    outline: none;
    padding: 10px;
    margin-bottom: 1.6rem;
    transition: all 0.2s ease-in-out;
}

.form-container .form .input:focus {
    border-left: 5px solid #440099;
    background-color: #fbfbfb;
}

.form-container .form .textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #440099;
    outline: none;
    background-color: #f4eaff;
    color: #440099;
    font-weight: 400;
    resize: none;
    max-height: 150px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.form-container .form .textarea:focus {
    border-left: 5px solid #440099;
}

.form-container .form .button-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-container .form .button-container .send-button {
    flex-basis: 70%;
    background: #440099;
    padding: 10px;
    color: #fbfbfb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    font-size: 1.6em;
    font-weight: 400;
    border: none;
    border: #440099 1px solid;
    transition: all 0.3s ease-in-out;
}

.form-container .form .button-container .send-button span {
    font-size: 1.333em;
    font-weight: 900;
}

.form-container .form .button-container .send-button:hover {
    background: transparent;
    border: #440099 1px solid;
    font-weight: 600;
    color: #440099;
    gap: 2rem;
    cursor: pointer;
}

.form-container .form .button-container .reset-button-container {
    filter: drop-shadow(1px 1px 0px #fff);
    flex-basis: 30%;
}

.form-container .form .button-container .reset-button-container .reset-button {
    position: relative;
    text-align: center;
    padding: 10px;
    color: #440099;
    font-size: 1.6em;
    font-weight: 400;
    background-color: #C799FF;
    border: none;
    outline: none;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    transition: all 0.3s ease-in-out;
}

.form-container .form .button-container .reset-button-container .reset-button:hover {
    background-color: #E9D6FF;
    cursor: pointer;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    .big-square,
    .top-right1,
    .top-right2,
    .bottom-wide {
        grid-column: 1 / 2;
        grid-row: auto;
    }
}




.reach-us-bottom {
    margin-bottom: 4rem;
    background-color: #fbfbfb;
    width: 100%;
    padding: 2rem;
    text-align: center;
    border-top: #440099 1px solid;
}

.reach-us-bottom h1 {
    font-size: 2.765em;
    font-weight: 600;
    color: #440099;
    margin-bottom: 2rem;
}


.google-maps {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.google-maps iframe {
    flex: 1 1 400px;
    min-height: 400px;
    border-radius: 8px;
    border: #440099 1px solid;
    box-shadow: 0px 3px 5px rgba(69, 0, 153, 0.2);
}